home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac: Not for Sale / Another.not.for.sale (Australia).iso / fade into you / getting there / Apps / MOO-1.7.6.src / src / version.c < prev   
Text File  |  1994-11-02  |  2KB  |  46 lines

  1. /******************************************************************************
  2.   Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  3.   Portions of this code were written by Stephen White, aka ghond.
  4.   Use and copying of this software and preparation of derivative works based
  5.   upon this software are permitted.  Any distribution of this software or
  6.   derivative works must comply with all applicable United States export
  7.   control laws.  This software is made available AS IS, and Xerox Corporation
  8.   makes no warranty about the software, its performance or its conformity to
  9.   any specification.  Any person obtaining a copy of this software is requested
  10.   to send their name and post office or electronic mail address to:
  11.     Pavel Curtis
  12.     Xerox PARC
  13.     3333 Coyote Hill Rd.
  14.     Palo Alto, CA 94304
  15.     Pavel@Xerox.Com
  16.  *****************************************************************************/
  17.  
  18. /*
  19.  *  The server_version is a character string containing three decimal numbers
  20.  *  separated by periods:
  21.  *
  22.  *    <major>.<minor>.<release>
  23.  *
  24.  *  The major version number changes very slowly, only when existing MOO code
  25.  *  might stop working, due to an incompatible change in the syntax or
  26.  *  semantics of the programming language, or when an incompatible change is
  27.  *  made to the database format.
  28.  *
  29.  *  The minor version number changes more quickly, whenever an upward-
  30.  *  compatible change is made in the programming language syntax or semantics.
  31.  *  The most common cause of this is the addition of a new kind of expression,
  32.  *  statement, or built-in function.
  33.  *
  34.  *  The release version number changes as frequently as bugs are fixed in the
  35.  *  server code.  Changes in the release number indicate changes that should
  36.  *  only be visible to users as bug fixes, if at all.
  37.  *
  38.  */
  39.  
  40. #include "config.h"
  41. #include "version.h"
  42.  
  43. const char     *server_version = "1.7.6";
  44.  
  45. char rcsid_version[] = "$Id: version.c,v 1.21 1992/10/23 23:03:47 pavel Exp $";
  46.